TypeScript 93.3%
JavaScript 4.4%
CSS 2.3%
1/**2 * Author: Simon-Pierre Boucher3 * Contact: contact@spboucher.ai4 * Project: Hilmacorp.ai — Web Platform5 * File: app/[locale]/[...rest]/page.tsx6 * Description: Catch-all route delegating unknown paths to the locale-aware 404 page7 */89import { notFound } from "next/navigation";1011export default function CatchAll() {12 notFound();13}14